home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / GIMP 2.6.8 / gimp-2.6.8-i686-setup.exe / {app} / share / gimp / 2.0 / scripts / flatland.scm < prev    next >
Text File  |  2009-12-15  |  3KB  |  77 lines

  1.  
  2. ; GIMP - The GNU Image Manipulation Program
  3. ; Copyright (C) 1995 Spencer Kimball and Peter Mattis
  4. ;
  5. ; FlatLand - creates a tileable pattern that looks like a map
  6. ; Copyright (C) 1997 Adrian Likins
  7. ;
  8. ; This program is free software; you can redistribute it and/or modify
  9. ; it under the terms of the GNU General Public License as published by
  10. ; the Free Software Foundation; either version 2 of the License, or
  11. ; (at your option) any later version.
  12. ;
  13. ; This program is distributed in the hope that it will be useful,
  14. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. ; GNU General Public License for more details.
  17. ;
  18. ; You should have received a copy of the GNU General Public License
  19. ; along with this program; if not, write to the Free Software
  20. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22. ;
  23. ; FlatLand
  24. ;
  25. ;    When used with the Land gradient It produces a tileble pattern that
  26. ;    looks a lot like a map.
  27. ;
  28. ;    Should be really cool once map-sphere starts working again.
  29. ;
  30. ;    To use: open gradient editor, load the Land gradient then run the script.
  31. ;
  32. ;     Adrian Likins <aklikins@eos.ncsu.edu>
  33. ;
  34.  
  35.  
  36. (define (script-fu-flatland width height seed detail xscale yscale)
  37.   (let* (
  38.         (img (car (gimp-image-new width height RGB)))
  39.         (layer-one (car (gimp-layer-new img width height
  40.                                         RGB-IMAGE "bottom" 100 NORMAL-MODE)))
  41.         (layer-two 0)
  42.         )
  43.  
  44.     (gimp-image-undo-disable img)
  45.     (gimp-image-add-layer img layer-one 0)
  46.    ; (gimp-img-add-layer img layer-two 1)
  47.  
  48.     (plug-in-solid-noise RUN-NONINTERACTIVE img layer-one 1 0 seed detail xscale yscale )
  49.     (plug-in-c-astretch RUN-NONINTERACTIVE img layer-one)
  50.     (set! layer-two (car (gimp-layer-copy layer-one TRUE)))
  51.     (gimp-image-add-layer img layer-two -1)
  52.     (gimp-image-set-active-layer img layer-two)
  53.  
  54.     (plug-in-gradmap RUN-NONINTERACTIVE img layer-two)
  55.     (gimp-image-undo-enable img)
  56.     (gimp-display-new img)
  57.   )
  58. )
  59.  
  60. (script-fu-register "script-fu-flatland"
  61.   _"_Flatland..."
  62.   _"Create an image filled with a Land Pattern"
  63.   "Adrian Likins <aklikins@eos.ncsu.edu>"
  64.   "Adrian Likins"
  65.   "1997"
  66.   ""
  67.   SF-ADJUSTMENT _"Image width"  '(256 10 2000 1 10 0 1)
  68.   SF-ADJUSTMENT _"Image height" '(256 10 2000 1 10 0 1)
  69.   SF-ADJUSTMENT _"Random seed"  '(80 1 2000000 1 10 0 1)
  70.   SF-ADJUSTMENT _"Detail level" '(3 1 15 1 10 1 0)
  71.   SF-ADJUSTMENT _"Scale X"      '(4 0.1 16 0.1 2 1 1)
  72.   SF-ADJUSTMENT _"Scale Y"      '(4 0.1 16 0.1 2 1 1)
  73. )
  74.  
  75. (script-fu-menu-register "script-fu-flatland"
  76.                          "<Image>/File/Create/Patterns")
  77.